home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Examples / EnterpriseObjects / DistributedEO / DistributedEO_main.m < prev    next >
Encoding:
Text File  |  1995-02-17  |  404 b   |  15 lines

  1. /* Generated by the NeXT Project Builder 
  2.    NOTE: Do NOT change this file -- Project Builder maintains it.
  3. */
  4.  
  5. #import <eointerface/EOApplication.h>
  6.  
  7. int main(int argc, char *argv[]) {
  8.     [EOApplication new];
  9.     if ([NXApp loadNibSection:"DistributedEO.nib" owner:NXApp withNames:NO])
  10.         [NXApp run];        
  11.     [NXApp free];
  12.     exit(0);
  13.     return 0;  // will never get here, but ANSI requires it
  14. }
  15.